home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / AIncludes / TextEngines.a < prev    next >
Text File  |  1996-05-01  |  2KB  |  67 lines

  1. ;
  2. ;    File:        TextEngines.a
  3. ;
  4. ;    Version:    Technology:    System 8
  5. ;                Release:    Universal Interfaces 3.0d3 on Copland DR1
  6. ;
  7. ;    Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  8. ;
  9. ;    Bugs?:        If you find a problem with this file, send the file and version
  10. ;                information (from above) and the problem description to:
  11. ;
  12. ;                    Internet:    apple.bugs@applelink.apple.com
  13. ;                    AppleLink:    APPLE.BUGS
  14. ;
  15. ;
  16.     IF &TYPE('__TEXTENGINES__') = 'UNDEFINED' THEN
  17. __TEXTENGINES__ SET 1
  18.  
  19.     IF &TYPE('__TYPES__') = 'UNDEFINED' THEN
  20.     include 'Types.a'
  21.     ENDIF
  22.     IF &TYPE('__QUICKDRAW__') = 'UNDEFINED' THEN
  23.     include 'QuickDraw.a'
  24.     ENDIF
  25.     IF &TYPE('__TEXTENGINETYPES__') = 'UNDEFINED' THEN
  26.     include 'TextEngineTypes.a'
  27.     ENDIF
  28.     IF FOR_SYSTEM8_COOPERATIVE THEN
  29. ;
  30. ; extern OSStatus GetNewTextEngineBySignature(TextEngineID theEngineSignature, TSystemTextEngine **theEngine)
  31. ;
  32.     IF GENERATINGCFM THEN
  33.         IMPORT_CFM_FUNCTION GetNewTextEngineBySignature
  34.     ENDIF
  35.  
  36. ;
  37. ; extern OSStatus GetNewTextEngineByClassName(Str32 className, SInt32 majorVersion, SInt32 minorVersion, TSystemTextEngine **theTextEngine)
  38. ;
  39.     IF GENERATINGCFM THEN
  40.         IMPORT_CFM_FUNCTION GetNewTextEngineByClassName
  41.     ENDIF
  42.  
  43. ;
  44. ; extern OSStatus GetSystemTextEngineInstance(TSystemTextEngine **theTextEngine)
  45. ;
  46.     IF GENERATINGCFM THEN
  47.         IMPORT_CFM_FUNCTION GetSystemTextEngineInstance
  48.     ENDIF
  49.  
  50. ;
  51. ; extern OSStatus FindTextEngine(TextEngineFeature theDesiredFeatures[2147483647], ItemCount nFeatures, TSystemTextEngine **theTextEngine)
  52. ;
  53.     IF GENERATINGCFM THEN
  54.         IMPORT_CFM_FUNCTION FindTextEngine
  55.     ENDIF
  56.  
  57. ;
  58. ; extern OSStatus IsFeatureSupported(TextEngineID theEngineSignature, TextEngineFeature theDesiredFeature, Boolean *isSupported)
  59. ;
  60.     IF GENERATINGCFM THEN
  61.         IMPORT_CFM_FUNCTION IsFeatureSupported
  62.     ENDIF
  63.  
  64.     ENDIF
  65.     ENDIF ; __TEXTENGINES__ 
  66.  
  67.